home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD ROM Paradise Collection 4
/
CD ROM Paradise Collection 4 1995 Nov.iso
/
system
/
ffg202.zip
/
DEMO_BAT.ZIP
/
EXE@FILE.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-04-01
|
431b
|
17 lines
@echo off
echo This example makes a list of all .EXE files, puts them in a file called "TOZIP",
echo which could then be used with PKZIP to make an archive of these EXE files.
echo.
echo for example: PKZIP EXEFILES @TOZIP
echo.
echo where "TOZIP" is created by FFG.
echo.
call presskey
echo on
ffg *:*exe /fp > tozip
echo off
echo.
echo Since this is a demonstration, TOZIP, will now be deleted...
del tozip